home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if '%1'=='' goto default
-
- if not exist %1:\orion\orion.cd goto error
- call demo1 %1
- call cer_midi
- call cer_digi
- cerberus /d%1 %2 %3 %4
- call demo2 %1
- goto end
-
- :default
- if not exist d:\orion\orion.cd goto default_error
- call demo1
- call cer_midi
- call cer_digi
- cerberus /dD
- call demo2
- goto end
-
- :error
- echo.
- echo Unable to find the game demo in the ORION directory of the CD.
- echo Please ensure the correct CD is present in Drive %1.
- echo.
- goto end
-
- :default_error
- echo.
- echo Unable to find the game demo in the ORION directory of the CD.
- echo Please ensure the correct CD is present in Drive D.
- echo If the CD is in a different drive then start the demo by entering
- echo ORION drive-letter.
- echo For example, enter ORION E if the CD is in drive E.
- echo.
- :end
-